terraform console
terraformのREPLが起動する。
組み込み関数を試したりできる。
https://www.terraform.io/language/functions
code:console
$ t console
"hoge"
"hoge"
12 + 34
46
fileeixsts("hello.txt")
╷
│ Error: Call to unknown function
│
│ on <console-input> line 1:
│ (source code not available)
│
│ There is no function named "fileeixsts". Did you mean "fileexists"?
╵
fileexists("hello.txt")
false
exit
$